Socket
Socket
Sign inDemoInstall

@thi.ng/errors

Package Overview
Dependencies
0
Maintainers
1
Versions
137
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/errors

Custom error types and helper fns.


Version published
Weekly downloads
492K
increased by0.66%
Maintainers
1
Created
Weekly downloads
 

Package description

What is @thi.ng/errors?

@thi.ng/errors is a utility library for creating and handling custom error types in JavaScript. It provides a set of predefined error classes and functions to simplify error handling and improve code readability.

What are @thi.ng/errors's main functionalities?

Custom Error Classes

This feature allows you to create and use custom error classes like IllegalArgumentError and IllegalStateError to handle specific error conditions in your code.

const { IllegalArgumentError, IllegalStateError } = require('@thi.ng/errors');

function checkAge(age) {
  if (age < 0) {
    throw new IllegalArgumentError('Age cannot be negative');
  }
  if (age > 120) {
    throw new IllegalStateError('Age seems unrealistic');
  }
  return 'Age is valid';
}

try {
  console.log(checkAge(-5));
} catch (e) {
  console.error(e.message);
}

Predefined Error Types

The package provides predefined error types like UnsupportedOperationError to handle common error scenarios in a standardized way.

const { UnsupportedOperationError } = require('@thi.ng/errors');

function notImplemented() {
  throw new UnsupportedOperationError('This operation is not supported');
}

try {
  notImplemented();
} catch (e) {
  console.error(e.message);
}

Error Wrapping

The wrapError function allows you to wrap existing errors with additional context, making it easier to debug and understand the root cause of errors.

const { wrapError } = require('@thi.ng/errors');

function riskyOperation() {
  try {
    throw new Error('Something went wrong');
  } catch (e) {
    throw wrapError(e, 'Risky operation failed');
  }
}

try {
  riskyOperation();
} catch (e) {
  console.error(e.message);
}

Other packages similar to @thi.ng/errors

Readme

Source

@thi.ng/errors

npm version npm downloads Twitter Follow

This project is part of the @thi.ng/umbrella monorepo.

About

Custom error types and helper fns used by many packages in this repo.

This feature was previously part of the @thi.ng/api package.

Installation

yarn add @thi.ng/errors

Dependencies

None

Usage examples

import * as err from "@thi.ng/errors";

err.illegalArity(3)
// Error: illegal arity: 3

err.illegalArgs("expected foo");
// Error: illegal argument(s): expected foo

err.illegalState("oops");
// Error: illegal state: oops

err.unsupported("TODO not yet implemented")
// Error: unsupported operation: TODO not yet implemented

Authors

  • Karsten Schmidt

License

© 2018 Karsten Schmidt // Apache Software License 2.0

Keywords

FAQs

Last updated on 15 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc